home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / By the Book / Learn C++ (CodeWarrior) / Chap 02.01 - hello++ / hello++.cp < prev    next >
Text File  |  1995-10-20  |  76b  |  8 lines

  1. #include <iostream.h>
  2.  
  3. int    main()
  4. {
  5.     cout << "Hello, world!";
  6.     
  7.     return 0;
  8. }